home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aztek_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  78 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  Ref: benji lemien <benjilenoob@hotmail.com>
  5. #
  6. #  This script is released under the GNU GPL v2
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(15785);
  12.  script_bugtraq_id( 11654 );
  13.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"11704");
  14.  script_version("$Revision: 1.2 $");
  15.  
  16.  name["english"] = "Aztek Forum XSS";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is using Aztek Forum, a web forum written in PHP.
  22.  
  23. A vulnerability exists the remote version of this software - more
  24. specifically in the script 'forum_2.php', which may allow an attacker to 
  25. set up a cross site scripting attack using the remote host.
  26.  
  27. Solution : Upgrade to the latest version of this software
  28. Risk factor : Medium";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks XSS in Aztek Forum";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  39.  family["english"] = "CGI abuses : XSS";
  40.  script_family(english:family["english"]);
  41.  script_dependencie("http_version.nasl", "cross_site_scripting.nasl");
  42.  script_require_ports("Services/www", 80);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55. if (!get_port_state(port)) exit(0);
  56. if (!can_host_php(port:port))exit(0);
  57.  
  58. if ( get_kb_item("www/" + port + "/generic_xss") ) exit ( 0 );
  59.  
  60. function check_dir(path)
  61. {
  62.  req = http_get(item:string(path, "/forum_2.php?msg=10&return=<script>foo</script>"), port:port);
  63.  res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  64.  if ( res == NULL ) exit(0);
  65.  
  66.  if ( "forum_2.php?page=<script>foo</script>" >< res )
  67.  {
  68.   security_warning(port);
  69.   exit(0);
  70.  }
  71. }
  72.  
  73. foreach dir ( cgi_dirs() )
  74. {
  75.  check_dir(path:dir);
  76. }
  77.  
  78.